/********* Lightbox Styling ***********/


/* Lightbox Zoom out cursor change */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: inherit;
}


/* Lightbox close icon styling */
.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
    font-size: 50px;
    top: -5px;
    opacity: 1;
}

/* Lightbox title hidden*/
.mfp-title {
    display: none;
}

/* Lighbox Counter styling */
.mfp-counter {
    color: #fff;
    font-size: 16px;
    font-family: sans-serif;
}


/* Pagination Styling - No Top Border*/
.et_pb_gallery .et_pb_gallery_pagination {
    border-top: 0px;
}

/* Active Pagination*/
.et_pb_filterable_portfolio .et_pb_portofolio_pagination ul li a.active, .et_pb_gallery .et_pb_gallery_pagination ul li a.active {
    color: #fff;
    background-color: #2EA6F5;
    padding: 10px 16px;
    border-radius: 30px;
}

/* Default Pagination */
.et_pb_gallery .et_pb_gallery_pagination ul li a {
    color: #000;
    padding: 10px 16px;
    background-color: #f7f7f7;
    border-radius: 30px;
    font-weight: bold;
}

/* Center Align Pagination */
.et_pb_gallery .et_pb_gallery_pagination ul {
    text-align: center;
}

/* Gallery Hover Effect Rotate and Scale*/

/*Normal State*/
@media (min-width: 981px){
.et_pb_gallery_grid .et_pb_gallery_item img {
    transition: .5s ease-in-out;
}
}

/* Hover State */
@media (min-width: 981px){
.et_pb_gallery_grid .et_pb_gallery_item img:hover {
    transform: scale(1.3) rotate(-5deg);
    transition: .5s ease-in-out;
}
}